home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / P / Passing Notes.cpt / Passing Notes / stack.txt < prev   
Text File  |  1992-04-01  |  7KB  |  272 lines

  1. -- stack: in
  2. -- format: 8 (HyperCard 1)
  3. -- flags: 0x5000 (can't delete)
  4. -- protect password hash: 0
  5. -- maximum user level: 5 (scripting)
  6. -- window: Rect(x1=0, y1=0, x2=0, y2=0)
  7. -- screen: Rect(x1=0, y1=0, x2=0, y2=0)
  8. -- card dimensions: w=0 h=0
  9. -- scroll: x=0 y=0
  10. -- background count: 8
  11. -- first background id: 2605
  12. -- card count: 35
  13. -- first card id: 3437
  14. -- list block id: 18223
  15. -- print block id: 0
  16. -- font table block id: 0
  17. -- style table block id: 0
  18. -- free block count: 0
  19. -- free size: 0 bytes
  20. -- total size: 308224 bytes
  21. -- stack block size: 6656 bytes
  22. -- created by hypercard version: 0x00000000
  23. -- compacted by hypercard version: 0x01228000
  24. -- modified by hypercard version: 0x01228000
  25. -- opened by hypercard version: 0x01228000
  26. -- patterns[0]: 0x0000000000000000
  27. -- patterns[1]: 0x8000000008000000
  28. -- patterns[2]: 0x8800220088002200
  29. -- patterns[3]: 0x8888222288882222
  30. -- patterns[4]: 0x88AA22AA88AA22AA
  31. -- patterns[5]: 0xCCAA33AACCAA33AA
  32. -- patterns[6]: 0xEEAABBAAEEAABBAA
  33. -- patterns[7]: 0xEEBBBBEEEEBBBBEE
  34. -- patterns[8]: 0xFFBBFFEEFFBBFFEE
  35. -- patterns[9]: 0xFFFFFFFFFFBFFFFF
  36. -- patterns[10]: 0x8010022001084004
  37. -- patterns[11]: 0xFFFFFFFFFFFFFFFF
  38. -- patterns[12]: 0x8822882288228822
  39. -- patterns[13]: 0x1122448811224488
  40. -- patterns[14]: 0xC4800C6843023026
  41. -- patterns[15]: 0xB130031BD8C00C8D
  42. -- patterns[16]: 0xAA00AA00AA00AA00
  43. -- patterns[17]: 0x8822552288225522
  44. -- patterns[18]: 0x8855225588552255
  45. -- patterns[19]: 0x77DD77DD77DD77DD
  46. -- patterns[20]: 0x8000000000000000
  47. -- patterns[21]: 0xAA55AA55AA55AA55
  48. -- patterns[22]: 0x038448300C020101
  49. -- patterns[23]: 0x8244394482010101
  50. -- patterns[24]: 0x8814224188412214
  51. -- patterns[25]: 0x8080413E080814E3
  52. -- patterns[26]: 0x22048C7422179810
  53. -- patterns[27]: 0xBE808808EB088880
  54. -- patterns[28]: 0x25C8328964244C92
  55. -- patterns[29]: 0xA29C41BE2AC914EB
  56. -- patterns[30]: 0x40A00000040A0000
  57. -- patterns[31]: 0x8040200002040800
  58. -- patterns[32]: 0xAA00800088008000
  59. -- patterns[33]: 0xFF80808080808080
  60. -- patterns[34]: 0x081C22C180010204
  61. -- patterns[35]: 0xFF808080FF080808
  62. -- patterns[36]: 0xF87422478F172271
  63. -- patterns[37]: 0xBF00BFBFB0B0B0B0
  64. -- patterns[38]: 0xFF7FBE5DA2418000
  65. -- patterns[39]: 0xFAF5FAF5A050A050
  66. -- checksum: 0x0
  67. ----- HyperTalk script -----
  68. on mouseUp
  69.   global PendState
  70.   if mouseH() < 10 and mouseV() <10 then
  71.     show menubar
  72.     exit to hyperCard
  73.   else
  74.     cleanScreen
  75.   end if
  76.   if name of target contains "Field" and short name of target is not "DoNotPop" then
  77.     popUp short name of target
  78.     exit to hyperCard
  79.   end if
  80.   if short name of the target is "Home" then
  81.     if optionKey() is down then
  82.       visual zoom in
  83.       go home
  84.     else
  85.       visual zoom in
  86.       go stack "Library"
  87.       if result() is empty then
  88.       else
  89.         beep
  90.         exit mouseUp
  91.       end if
  92.     end if
  93.   end if
  94.   if short name of target is "SeatingChart" then
  95.     if optionKey() is not down then
  96.       visual zoom open
  97.       go cd id 16794
  98.     else
  99.       if PendState is "Msg Pending" then
  100.         set cursor to 4
  101.         lock screen
  102.         go cd id 12170
  103.         send mouseUp to cd btn id 21
  104.         unlock screen with zoom open
  105.       else
  106.         visual zoom open
  107.         go cd id 16794
  108.       end if
  109.     end if
  110.   end if
  111. end mouseUp
  112.  
  113. on wleft
  114.   visual wipe left
  115.   go (line 4 of script of target)
  116. end wleft
  117. on wright
  118.   visual wipe right
  119.   go (line 4 of script of target)
  120. end wright
  121. on vdis
  122.   visual dissolve
  123.   go (line 4 of script of target)
  124. end vdis
  125. on doScro direction
  126.   do "visual scroll " &direction
  127.   go (line 4 of script of target)
  128. end doScro
  129.  
  130. on openCard
  131. end openCard
  132.  
  133. on closeCard
  134.   cleanScreen
  135. end closeCard
  136.  
  137. on popUp thatField
  138.   cleanScreen
  139.   lock screen
  140.   set visible of cd fld thatField to not visible of cd fld thatField
  141.   unlock screen with dissolve
  142. end popUp
  143.  
  144. on cleanScreen
  145.   hide menuBar
  146.   hide msg
  147. end cleanScreen
  148.  
  149. on waiter
  150.   wait until mouse() is down
  151. end waiter
  152.  
  153. on doMenu WhichItem
  154.   if whichitem is "If Monks Had Macs..." then
  155.     answer "       This stack is from the package" &return &"       ‚ÄúIf Monks Had Macs...‚Äù 2.5.7" &return &"       ¬©1988,1989  riverTEXT‚Ñ¢"
  156.     exit domenu
  157.   end if
  158.   if WhichItem is "Quit HyperCard" then
  159.     if the freesize of this stack > 2000 and the diskspace > the size of this stack then
  160.       Answer "Compact this stack before quitting?" with "Cancel" or "No" or "Yes"
  161.       If it is "Yes" then
  162.         if cantmodify of this stack is false then
  163.           set loc of Message Box to 17,110
  164.           Put "             Compacting this stack before quitting"
  165.           doMenu "Compact Stack"
  166.           pass doMenu
  167.         else
  168.           show menuBar
  169.           answer "The Cantmodify of this stack is set to true," &" so compacting is impossible at this time. Next session?" with "OK"
  170.           pass doMenu
  171.         end if
  172.       end if
  173.       if it is "No" then
  174.         pass domenu
  175.       end if
  176.     else
  177.       pass doMenu
  178.     end if
  179.   else
  180.     pass doMenu
  181.   end if
  182. end doMenu
  183.  
  184. on openStack
  185.   global Stacks,theSpeech
  186.   cleanScreen
  187.   if the version < 1.2 then
  188.     Answer "Hypercard version 1.2, or later, is available at your " &"Apple dealer. Many functions of this stack require the new " &"features.  Continue?" with "Risk It" or "Go Home"
  189.     if it is "Go Home" then
  190.       visual dissolve
  191.       go home
  192.       exit openStack
  193.     end if
  194.   end if
  195.   if stacks is empty then
  196.     CheckGlobals
  197.   end if
  198.   About " ","If Monks Had Macs..."
  199.   if theSpeech is empty then TurnSpeechOn
  200.   set userLevel to 5
  201. end openStack
  202.  
  203. on CheckGlobals
  204.   global GULevel,GPKeys,GTArrows
  205.   global GVPatn,GBTyping,GVMsg,GVTool
  206.   getHomeInfo
  207.   put the userLevel into GULevel
  208.   put the powerKeys Into GPKeys
  209.   put the textArrows into GTArrows
  210.   put the blindTyping into GBTyping
  211.   put the visible of the msg into GVMsg
  212.   put the visible of tool window into GVTool
  213.   put the visible of pattern window into GVPatn
  214. end CheckGlobals
  215.  
  216. on closeStack
  217.   global GULevel,GPKeys,GTArrows
  218.   Global GVPatn,GBTyping,GVMsg,GVTool
  219.   global PendState,lastClick
  220.   cleanScreen
  221.   put empty into lastClick
  222.   put empty into PendState
  223.   if GULevel is empty then
  224.     CheckGlobals
  225.   end if
  226.   set the userLevel to GULevel
  227.   set the powerKeys to GPKeys
  228.   set the textArrows to GTArrows
  229.   set the blindTyping to GBTyping
  230.   set the visible of the msg to GVMsg
  231.   set the visible of tool window to GVTool
  232.   set the visible of pattern window to GVPatn
  233.   about
  234. end closeStack
  235.  
  236. function MacintalkInstalled
  237. global theSpeech
  238. return not (theSpeech is empty)
  239. end MacintalkInstalled
  240.  
  241. on say
  242.   if MacintalkInstalled()
  243.   then pass say
  244. end say
  245.  
  246. on sayphonetic
  247.   if MacintalkInstalled()
  248.   then pass sayphonetic
  249. end sayphonetic
  250.  
  251. on setrate
  252.   if MacintalkInstalled()
  253.   then pass setrate
  254. end setrate
  255.  
  256. on setpitch
  257.   if MacintalkInstalled()
  258.   then pass setpitch
  259. end setpitch
  260.  
  261. --NOTICE:
  262. --Those portions of this stack's scripts that are not Brian Thomas's,
  263. --and those portions of the stacks's scripts that were not stolen (with
  264. --credit given) from other stacks, and those portions of the screen of
  265. --"Li'l Beaver" that Scott Watson wouldn't recognize, are the work of
  266. --Philip A. Mohr, Jr., 4405 N. Rosemead Blvd., Rosemead, Ca. 91770, who
  267. --asks only that you credit him if you find another use for any of the
  268. --scripts or concepts in this stack. Sending him a copy of your stack
  269. --would be a nice touch, as would posting a copy of your stack on a
  270. --commercial service where it would also be available to all.
  271. --                                              Fillmore
  272.